home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE23 / TIPTRIX / LISTING1.PAS next >
Pascal/Delphi Source File  |  1997-06-17  |  335b  |  31 lines

  1. T1.DPR:
  2. program t1;
  3. uses t1u;
  4. end.
  5.  
  6. T1U.PAS:
  7. {$A+,B-,C+,D+,E-,F-,G+,H+,I+,J+,K-,L+,M-,N+,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y-,Z1}
  8. unit t1u;
  9. interface
  10. {$I SIMPLE.INC}
  11. type
  12.   TSimpleClass = class
  13.   private
  14.     Unused1: integer;
  15.     Unused2: integer;
  16.   end;
  17. implementation
  18. end.
  19.  
  20. SIMPLE.INC:
  21. {1
  22. 2
  23. 3
  24. 4
  25. 5
  26. 6
  27. 7
  28. 8
  29. 9}
  30.  
  31.